Order of Events in Windows Forms

The ApplicationExit event of the Application class is raised after the shutdown events of the main form. ...
()

Communicate with USB port using C#

I worked a GUI project using C# for an audio company. This project needs PC GUI program communicate with a hardware board which has a USB port so that the GUI and the board switch data. ...
()

How to auto scroll to the bottom of a multiline TextBox in C# ?

At least in .NET 2.0, the TextBox control doesn't have a property to let the TextBox automatically scroll to the bottom when it is set to multiline. ...
()

ComboBoxItem Class for .NET 2.0

Sometimes when we use the ComboBox control in .NET 2.0, we need add items which have "combination" data, such as we need to add the following data to a ComboBox: ...
()